notify-rust
A not so well-named library for displaying desktop notifications. On linux/bsd it uses dbus-rs, so it does not rely on libnotify. On macos it uses mac-notification-sys.
[]
= "3"
Requirements
rustc
>= 1.32- linux, with
libdbus
(see dbus-rs) - macos
- no windows support, yet
Examples
Example 1 (Simple Notification)
use Notification;
new
.summary
.body
.icon
.show?;
Example 2 (Persistent Notification)
use Notification;
use NotificationHint as Hint;
new
.summary
.body
.icon
.appname
.hint
.hint // this is not supported by all implementations
.timeout // this however is
.show?;
Usage & Documentation
Please see the documentation for current examples.
Commandline tool
Checkout toastify, it exposes most of the functionality of the lib to the commandline.
macOS support
This library shines on linux and bsd, which is its original target platform.
Lately it gained support for macOS thanks to mac-notification-sys.
However this only includes a small subset of the current functionality, since NSNotification
s don't have as many features. Please refer to the You are a versed macOS UI developer with mad Objective-C skillz? PRSV.
Contribution
Any help in form of descriptive and friendly issues or comprehensive pull requests are welcome!
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in notify-rust by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.